Don't ignore exceptions here - the possible RuntimeError is handled already.
authorcl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Wed, 27 Jul 2005 18:40:32 +0000 (18:40 +0000)
committercl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>
Wed, 27 Jul 2005 18:40:32 +0000 (18:40 +0000)
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
tools/python/xen/xend/XendDomainInfo.py

index 5859905b3d416b96a4fd9912eb6bea6eb1459b24..4666eab5247c27d6fd8a33e48b6356d80a1d485c 100644 (file)
@@ -989,11 +989,8 @@ class XendDomainInfo:
             self.store_channel = self.eventChannel("store_channel")
         self.store_mfn = xc.init_store(self.store_channel.port2)
         if self.store_mfn >= 0:
-            try:
-                self.db.introduceDomain(self.id, self.store_mfn,
-                                        self.store_channel)
-            except:
-                pass
+            self.db.introduceDomain(self.id, self.store_mfn,
+                                    self.store_channel)
         self.exportToDB(save=True, sync=True)
 
 def vm_field_ignore(vm, config, val, index):